| Shawn O. Pearce | 6e75221 | 2009-08-12 12:22:12 -0700 | [diff] [blame] | 1 | gerrit create-project |
| 2 | ===================== |
| 3 | |
| 4 | NAME |
| 5 | ---- |
| 6 | gerrit create-project - Create a new hosted project |
| 7 | |
| 8 | SYNOPSIS |
| 9 | -------- |
| 10 | [verse] |
| Shawn O. Pearce | 4776924 | 2011-06-14 16:40:48 -0700 | [diff] [blame] | 11 | 'ssh' -p <port> <host> 'gerrit create-project' |
| 12 | [--owner <GROUP> ... | -o <GROUP> ...] |
| 13 | [--parent <NAME> | -p <NAME> ] |
| Bruce Zu | cdb3cb8 | 2011-12-14 13:27:43 +0800 | [diff] [blame] | 14 | [--suggest-parents | -S ] |
| Shawn O. Pearce | 4776924 | 2011-06-14 16:40:48 -0700 | [diff] [blame] | 15 | [--permissions-only] |
| 16 | [--description <DESC> | -d <DESC>] |
| Edwin Kempin | 73b2698 | 2012-07-16 13:53:22 +0200 | [diff] [blame] | 17 | [--submit-type <TYPE> | -t <TYPE>] |
| Shawn O. Pearce | 4776924 | 2011-06-14 16:40:48 -0700 | [diff] [blame] | 18 | [--use-contributor-agreements | --ca] |
| 19 | [--use-signed-off-by | --so] |
| 20 | [--use-content-merge] |
| 21 | [--require-change-id | --id] |
| Anatol Pomazau | a54b03d | 2012-05-03 11:43:22 -0700 | [diff] [blame] | 22 | [[--branch <REF> | -b <REF>] ...] |
| Shawn O. Pearce | 4776924 | 2011-06-14 16:40:48 -0700 | [diff] [blame] | 23 | [--empty-commit] |
| 24 | { <NAME> | --name <NAME> } |
| Shawn O. Pearce | 6e75221 | 2009-08-12 12:22:12 -0700 | [diff] [blame] | 25 | |
| 26 | DESCRIPTION |
| 27 | ----------- |
| 28 | Creates a new bare Git repository under `gerrit.basePath`, using |
| 29 | the project name supplied. The newly created repository is empty |
| 30 | (has no commits), but is registered in the Gerrit database so that |
| 31 | the initial commit may be uploaded for review, or initial content |
| 32 | can be pushed directly into a branch. |
| 33 | |
| 34 | If replication is enabled, this command also connects to each of |
| 35 | the configured remote systems over SSH and uses command line git |
| 36 | on the remote system to create the empty repository. |
| 37 | |
| 38 | |
| 39 | ACCESS |
| 40 | ------ |
| Shawn O. Pearce | 897d921 | 2011-06-16 16:59:59 -0700 | [diff] [blame] | 41 | Caller must be a member of the privileged 'Administrators' group, |
| Fredrik Luthander | 79d3815 | 2012-03-13 09:52:22 +0100 | [diff] [blame] | 42 | or have been granted |
| 43 | link:access-control.html#capability_createProject[the 'Create Project' global capability]. |
| Shawn O. Pearce | 6e75221 | 2009-08-12 12:22:12 -0700 | [diff] [blame] | 44 | |
| 45 | SCRIPTING |
| 46 | --------- |
| 47 | This command is intended to be used in scripts. |
| 48 | |
| 49 | OPTIONS |
| 50 | ------- |
| Shawn O. Pearce | 4776924 | 2011-06-14 16:40:48 -0700 | [diff] [blame] | 51 | <NAME>:: |
| 52 | Required; name of the new project to create. If name ends |
| 53 | with `.git` the suffix will be automatically removed. |
| Shawn O. Pearce | 6e75221 | 2009-08-12 12:22:12 -0700 | [diff] [blame] | 54 | |
| Shawn O. Pearce | 4776924 | 2011-06-14 16:40:48 -0700 | [diff] [blame] | 55 | --name:: |
| 56 | -n:: |
| 57 | Deprecated alias for the <NAME> argument. This option may |
| 58 | be removed in a future release. |
| 59 | |
| 60 | --branch:: |
| 61 | -b:: |
| Anatol Pomazau | a54b03d | 2012-05-03 11:43:22 -0700 | [diff] [blame] | 62 | Name of the initial branch(es) in the newly created project. |
| 63 | Several branches can be specified on the command line. |
| 64 | If several branches are specified then the first one becomes HEAD |
| 65 | of the project. If none branches are specified then default value |
| 66 | ('master') is used. |
| Shawn O. Pearce | 8c56a8c | 2009-09-18 19:21:08 -0700 | [diff] [blame] | 67 | |
| Shawn O. Pearce | 4776924 | 2011-06-14 16:40:48 -0700 | [diff] [blame] | 68 | --owner:: |
| 69 | -o:: |
| Hugo Josefson | 072b470 | 2010-04-21 19:27:11 +0200 | [diff] [blame] | 70 | Name of the group(s) which will initially own this repository. |
| 71 | The specified group(s) must already be defined within Gerrit. |
| 72 | Several groups can be specified on the command line. |
| Shawn O. Pearce | 6e75221 | 2009-08-12 12:22:12 -0700 | [diff] [blame] | 73 | + |
| Shawn O. Pearce | 4776924 | 2011-06-14 16:40:48 -0700 | [diff] [blame] | 74 | Defaults to what is specified by `repository.*.ownerGroup` |
| Shawn O. Pearce | 897d921 | 2011-06-16 16:59:59 -0700 | [diff] [blame] | 75 | in gerrit.config. |
| Shawn O. Pearce | 6e75221 | 2009-08-12 12:22:12 -0700 | [diff] [blame] | 76 | |
| Shawn O. Pearce | 4776924 | 2011-06-14 16:40:48 -0700 | [diff] [blame] | 77 | --parent:: |
| 78 | -p:: |
| Shawn O. Pearce | 9c15114 | 2010-04-23 17:03:16 -0700 | [diff] [blame] | 79 | Name of the parent project to inherit access rights |
| 80 | through. If not specified, the parent is set to the default |
| Shawn O. Pearce | a063182 | 2011-06-14 11:18:18 -0700 | [diff] [blame] | 81 | project `All-Projects`. |
| Shawn O. Pearce | 9c15114 | 2010-04-23 17:03:16 -0700 | [diff] [blame] | 82 | |
| Bruce Zu | cdb3cb8 | 2011-12-14 13:27:43 +0800 | [diff] [blame] | 83 | --suggest-parents:: |
| 84 | -S:: |
| 85 | Suggest parent candidates. This option cannot be used with |
| 86 | other arguments. Print out a list of projects that are |
| 87 | already parents to other projects, thus it can help the user |
| 88 | find a suitable parent for the new project. |
| 89 | |
| Shawn O. Pearce | 4776924 | 2011-06-14 16:40:48 -0700 | [diff] [blame] | 90 | --permissions-only:: |
| Shawn O. Pearce | aaca959 | 2011-06-14 10:24:49 -0700 | [diff] [blame] | 91 | Create the project only to serve as a parent for other |
| 92 | projects. The new project's Git repository will be |
| 93 | initialized to have 'HEAD' point to 'refs/meta/config'. |
| 94 | |
| Shawn O. Pearce | 4776924 | 2011-06-14 16:40:48 -0700 | [diff] [blame] | 95 | --description:: |
| 96 | -d:: |
| Shawn O. Pearce | 6e75221 | 2009-08-12 12:22:12 -0700 | [diff] [blame] | 97 | Initial description of the project. If not specified, |
| 98 | no description is stored. |
| Shawn O. Pearce | ea6fc17 | 2009-09-18 15:40:38 -0700 | [diff] [blame] | 99 | + |
| 100 | Description values containing spaces should be quoted in single quotes |
| Shawn O. Pearce | 4776924 | 2011-06-14 16:40:48 -0700 | [diff] [blame] | 101 | ('). This most likely requires double quoting the value, for example |
| 102 | `--description "'A description string'"`. |
| Shawn O. Pearce | 6e75221 | 2009-08-12 12:22:12 -0700 | [diff] [blame] | 103 | |
| Shawn O. Pearce | 4776924 | 2011-06-14 16:40:48 -0700 | [diff] [blame] | 104 | --submit-type:: |
| 105 | -t:: |
| Shawn O. Pearce | 6e75221 | 2009-08-12 12:22:12 -0700 | [diff] [blame] | 106 | Action used by Gerrit to submit an approved change to its |
| 107 | destination branch. Supported options are: |
| 108 | + |
| Shawn O. Pearce | 8c56a8c | 2009-09-18 19:21:08 -0700 | [diff] [blame] | 109 | * FAST_FORWARD_ONLY: produces a strictly linear history. |
| 110 | * MERGE_IF_NECESSARY: create a merge commit when required. |
| 111 | * MERGE_ALWAYS: always create a merge commit. |
| 112 | * CHERRY_PICK: always cherry-pick the commit. |
| Shawn O. Pearce | 6e75221 | 2009-08-12 12:22:12 -0700 | [diff] [blame] | 113 | |
| 114 | + |
| Shawn O. Pearce | 8c56a8c | 2009-09-18 19:21:08 -0700 | [diff] [blame] | 115 | Defaults to MERGE_IF_NECESSARY. For more details see |
| Shawn O. Pearce | 6e75221 | 2009-08-12 12:22:12 -0700 | [diff] [blame] | 116 | link:project-setup.html#submit_type[Change Submit Actions]. |
| 117 | |
| Shawn O. Pearce | 4776924 | 2011-06-14 16:40:48 -0700 | [diff] [blame] | 118 | --use-content-merge:: |
| Dmitry Fink | 876953e | 2010-09-29 23:44:22 -0700 | [diff] [blame] | 119 | If enabled, Gerrit will try to perform a 3-way merge of text |
| 120 | file content when a file has been modified by both the |
| 121 | destination branch and the change being submitted. This |
| 122 | option only takes effect if submit type is not |
| 123 | FAST_FORWARD_ONLY. Disabled by default. |
| 124 | |
| Shawn O. Pearce | 4776924 | 2011-06-14 16:40:48 -0700 | [diff] [blame] | 125 | --use-contributor-agreements:: |
| 126 | --ca:: |
| Shawn O. Pearce | 6e75221 | 2009-08-12 12:22:12 -0700 | [diff] [blame] | 127 | If enabled, authors must complete a contributor agreement |
| 128 | on the site before pushing any commits or changes to this |
| 129 | project. Disabled by default. |
| 130 | |
| Shawn O. Pearce | 4776924 | 2011-06-14 16:40:48 -0700 | [diff] [blame] | 131 | --use-signed-off-by:: |
| 132 | --so: |
| Shawn O. Pearce | 6e75221 | 2009-08-12 12:22:12 -0700 | [diff] [blame] | 133 | If enabled, each change must contain a Signed-off-by line |
| 134 | from either the author or the uploader in the commit message. |
| 135 | Disabled by default. |
| 136 | |
| Shawn O. Pearce | 4776924 | 2011-06-14 16:40:48 -0700 | [diff] [blame] | 137 | --require-change-id:: |
| 138 | --id:: |
| 139 | Require a valid link:user-changeid.html[Change-Id] footer |
| 140 | in any commit uploaded for review. This does not apply to |
| 141 | commits pushed directly to a branch or tag. |
| 142 | |
| 143 | --empty-commit:: |
| Shawn Pearce | ec15511 | 2010-10-12 13:58:36 +0200 | [diff] [blame] | 144 | Creates an initial empty commit for the Git repository of the |
| 145 | project that is newly created. |
| 146 | |
| Shawn O. Pearce | 6e75221 | 2009-08-12 12:22:12 -0700 | [diff] [blame] | 147 | |
| 148 | EXAMPLES |
| 149 | -------- |
| 150 | Create a new project called `tools/gerrit`: |
| 151 | |
| 152 | ==== |
| Shawn O. Pearce | 4776924 | 2011-06-14 16:40:48 -0700 | [diff] [blame] | 153 | $ ssh -p 29418 review.example.com gerrit create-project tools/gerrit.git |
| Shawn O. Pearce | 6e75221 | 2009-08-12 12:22:12 -0700 | [diff] [blame] | 154 | ==== |
| 155 | |
| Shawn O. Pearce | ea6fc17 | 2009-09-18 15:40:38 -0700 | [diff] [blame] | 156 | Create a new project with a description: |
| 157 | |
| 158 | ==== |
| Shawn O. Pearce | 4776924 | 2011-06-14 16:40:48 -0700 | [diff] [blame] | 159 | $ ssh -p 29418 review.example.com gerrit create-project tool.git --description "'Tools used by build system'" |
| Shawn O. Pearce | ea6fc17 | 2009-09-18 15:40:38 -0700 | [diff] [blame] | 160 | ==== |
| 161 | |
| 162 | Note that it is necessary to quote the description twice. The local |
| 163 | shell needs double quotes around the value to ensure the single quotes |
| 164 | are passed through SSH as-is to the remote Gerrit server, which uses |
| 165 | the single quotes to delimit the value. |
| 166 | |
| Shawn O. Pearce | 6e75221 | 2009-08-12 12:22:12 -0700 | [diff] [blame] | 167 | REPLICATION |
| 168 | ----------- |
| Shawn O. Pearce | 7d2cb04 | 2012-05-10 19:12:09 -0700 | [diff] [blame] | 169 | If the replication plugin is installed, the plugin will attempt to |
| 170 | perform remote repository creation by a Bourne shell script: |
| Shawn O. Pearce | 6e75221 | 2009-08-12 12:22:12 -0700 | [diff] [blame] | 171 | |
| 172 | ==== |
| Shawn O. Pearce | 8c56a8c | 2009-09-18 19:21:08 -0700 | [diff] [blame] | 173 | mkdir -p '/base/project.git' && cd '/base/project.git' && git init --bare && git update-ref HEAD refs/heads/master |
| Shawn O. Pearce | 6e75221 | 2009-08-12 12:22:12 -0700 | [diff] [blame] | 174 | ==== |
| 175 | |
| Shawn O. Pearce | 8c56a8c | 2009-09-18 19:21:08 -0700 | [diff] [blame] | 176 | For this to work successfully the remote system must be able to run |
| 177 | arbitrary shell scripts, and must have `git` in the user's PATH |
| 178 | environment variable. Administrators could also run this command line |
| 179 | by hand to establish a new empty repository. |
| Shawn O. Pearce | 6e75221 | 2009-08-12 12:22:12 -0700 | [diff] [blame] | 180 | |
| Shawn O. Pearce | 7d2cb04 | 2012-05-10 19:12:09 -0700 | [diff] [blame] | 181 | A custom extension or plugin may also be developed to implement the |
| 182 | NewProjectCreatedListener extension point and handle custom logic |
| 183 | for remote repository creation. |
| 184 | |
| Shawn O. Pearce | 6e75221 | 2009-08-12 12:22:12 -0700 | [diff] [blame] | 185 | SEE ALSO |
| 186 | -------- |
| 187 | |
| Shawn O. Pearce | 6e75221 | 2009-08-12 12:22:12 -0700 | [diff] [blame] | 188 | * link:project-setup.html[Project Setup] |
| 189 | |
| 190 | GERRIT |
| 191 | ------ |
| 192 | Part of link:index.html[Gerrit Code Review] |